home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AOL File Library: 4,101 to 4,200
/
aol-file-protocol-4400-4101-to-4200.zip
/
AOLDLs
/
Business Management
/
PROP_ V7.0 Property Manager
/
PROP-X70.exe
/
PROPERTY.ACS
/
CRISIS-H.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-02-25
|
1KB
|
41 lines
ECHO OFF
CLS
ECHO This crisis procedure will backup all data, onto this hard drive.
ECHO
ECHO You use this procdure if the data files are so large that they will
ECHO not fit onto the floppy disk using the standard backup in the program.
ECHO
ECHO This procedure will compress the data files and store them in this
ECHO subdirectory under the entry:
ECHO
ECHO HARD-H1.LZH
ECHO
ECHO Additionally, it keeps the last two backups in this form:
ECHO
ECHO HARD-H2.LZH [most recent]
ECHO HARD-H3.LZH [oldest backup]
ECHO
ECHO If you want to stop this procedure now, enter a
ECHO CONTROL-C. Enter any other key to continue.
ECHO
PAUSE
CLS
ECHO
COPY HARD-H2.LZH HARD-H3.LZH >TMP
CLS
COPY HARD-H1.LZH HARD-H2.LZH >TMP
CLS
ZDEL /N /K HARD-H1.LZH
LHARC A HARD-H1.LZH *.DB?
CLS
IF NOT EXIST HARD-H1.LZH GOTO WARN
GOTO END
:WARN
CLS
ECHO For some reason, HARD-H1.LZH will not copy to your hard drive.
ECHO Check to see if it is full.
:END
ECHO
ECHO Finished!
ECHO